Newest tab first

Hi

Welcome to musicology

Even smaller heading

This is a list:

  • hi
  • second
  • third
  • fourth

One first good working page

ggplot(all_eminem, aes(x = track.album.release_date, y = valence, color = category, size = track.popularity))+
  geom_boxplot()+
  theme(axis.text.x = element_text(angle =-90),
        axis.title.x = element_blank())+
  ggtitle("The change in valence of Eminem's music over the years")


test for text?

Everything else

ggplot(all_eminem, aes(x = track.album.name, y = speechiness, color = category, size = track.popularity))+
  geom_boxplot()+
  theme(axis.text.x = element_text(angle =-90))

ggplot(all_eminem, aes(x = track.album.release_date, y = speechiness, color = category, size = track.popularity))+
  geom_point()+
  theme(axis.text.x = element_text(angle =-90))

Make a last page

first_plot <- ggplot(all_eminem, aes(x = track.album.release_date, y = speechiness, color = category, size = track.popularity))+
  geom_point()+
  theme(axis.text.x = element_text(angle =-90))